e75fd69c6c4a7eb1633cdff46a0b7303f2cccf38,jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/CheckBoxMultipleChoice.java,CheckBoxMultipleChoice,onComponentTagBody,#MarkupStream#ComponentTag#,359
Before Change
Object displayValue = getChoiceRenderer().getDisplayValue(choice);
Class objectClass = displayValue == null ? null : displayValue.getClass();
// Get label for choice
final String label = getConverter(objectClass).convertToString(displayValue,
getLocale());
// If there is a display value for the choice, then we know that the
// choice is automatic in some way. If label is /null/ then we know
After Change
Class objectClass = displayValue == null ? null : displayValue.getClass();
// Get label for choice
String label = "";
if (objectClass != null && objectClass != String.class)
{
label = getConverter(objectClass).convertToString(displayValue, getLocale());
}
else if (displayValue != null)
{
label = displayValue.toString();
}
// If there is a display value for the choice, then we know that the